home *** CD-ROM | disk | FTP | other *** search
- proc critterwatch_normal {} {
-
- if {[.isinparentsystem] == "true"} {
- .announcestate waitsearch
- } elseif {[.islifetimeover] == "true"} {
- .announcestate die
- }
- }
-
-
- proc critterwatch_waitsearch {} {
- if {[.hitvictim] == "true"} {
- .announcestate preexplode
- } elseif {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.islifetimeover] == "true"} {
- .announcestate die
- } elseif {[.isinparentsystem] == "false"} {
- .announcestate normal
- } elseif {[.hastarget] == "true"} {
- .announcestate goto
- } else {
- set tgt [.searchtarget]
- if {($tgt != "null") && ([.testvehicleastarget $tgt] == "true")} {
- .setvehicletarget $tgt 300 true
- .announcestate goto
- }
- }
- }
-
- proc critterwatch_goto {} {
- if {[.hitvictim] == "true"} {
- .announcestate preexplode
- } elseif {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.islifetimeover] == "true"} {
- .announcestate die
- } elseif {[.isinparentsystem] == "false"} {
- .announcestate normal
- } elseif {[.hastarget] == "false"} {
- .announcestate waitsearch
- } elseif {[.istargetreachable] == "false"} {
- puts "Ziel is wech"
- .deletetarget
- .announcestate waitsearch
- }
-
- }
-
- proc critterwatch_attack {} {
- if {[.hitvictim] == "true"} {
- .announcestate preexplode
- } elseif {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.islifetimetimeover] == "true"} {
- .announcestate die
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate waitsearch
- } elseif {[.isinparentsystem] == "false"} {
- .announcestate normal
- } elseif {[.hastarget] == "false"} {
- .announcestate waitsearch
- }
-
- }
-
- proc critterwatch_preexplode {} {
-
- # Nach Animation wegnehmen
- if {[.isanimfinished] == "true"} {
- .announcestate explode
- }
- }
-
- proc critterwatch_explode {} {
-
- # Nach Animation wegnehmen
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
- proc critterwatch_die {} {
-
- # Nach Animation wegnehmen
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
- proc critterwatch_cinematic {} {
-
- if {[.iscinematicfinished] == "true"} {
- .announcestate normal
- }
- }
-